diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 04:31:01 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 04:31:01 +0000 |
| commit | 933589898bb26c1585b0585407e935f10e3be2ab (patch) | |
| tree | 809d6d9a10052e3be091bf4a9c521f05df5c3559 /app/[lng]/evcp/(evcp)/menu-list/page.tsx | |
| parent | a9980dd9f0f53c9c90937947d4514c921ba05f7f (diff) | |
(최겸) 인포메이선 컴포넌트 테이블 별 추가 완료
Diffstat (limited to 'app/[lng]/evcp/(evcp)/menu-list/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/menu-list/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/menu-list/page.tsx b/app/[lng]/evcp/(evcp)/menu-list/page.tsx index 84138320..6f56a2de 100644 --- a/app/[lng]/evcp/(evcp)/menu-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/menu-list/page.tsx @@ -9,7 +9,7 @@ import { InitializeButton } from "@/lib/menu-list/table/initialize-button"; import { MenuListTable } from "@/lib/menu-list/table/menu-list-table"; import { Shell } from "@/components/shell" import * as React from "react" - +import { InformationButton } from "@/components/information/information-button"; export default async function MenuListPage() { // 초기 데이터 로드 const [menusResult, usersResult] = await Promise.all([ @@ -22,9 +22,12 @@ export default async function MenuListPage() { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 메뉴 관리 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 메뉴 관리 + </h2> + <InformationButton pageCode="evcp/menu-list" /> + </div> <p className="text-muted-foreground"> 각 메뉴별로 담당자를 지정하고 관리할 수 있습니다. </p> |
